home *** CD-ROM | disk | FTP | other *** search
/ Eagles Nest BBS 8 / Eagles_Nest_Mac_Collection_Disc_8.TOAST / Developer Tools⁄Additions / TextPertDK#1 / MPW C Sources & Examples.image / Example2 / Example2.c < prev    next >
Text File  |  1993-02-23  |  55KB  |  1,658 lines

  1. /*------------------------------------------------------------------------------
  2. #
  3. #    CTA  I+D Department
  4. #
  5. #    TextPert reader engine use sample.
  6. #
  7. #    This Sample is based upon the TESample sample provided with the MPW 3.2
  8. #        stuff.
  9. #
  10. #    The TextPert reader engine parts of the code are well indicated in this
  11. #        sample.
  12. #
  13. #
  14. #
  15.  
  16.  
  17. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  18.         Next Part belongs to TESample sample.
  19. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  20.  
  21.  
  22. /*------------------------------------------------------------------------------
  23. #
  24. #    Apple Macintosh Developer Technical Support
  25. #
  26. #    MultiFinder-Aware Simple TextEdit Sample Application
  27. #
  28. #    TESample
  29. #
  30. #    This file: TESample.c    -    C Source
  31. #
  32. #    Copyright © 1989 Apple Computer, Inc.
  33. #    All rights reserved.
  34. #
  35. #    Versions:    
  36. #                1.00                08/88
  37. #                1.01                11/88
  38. #                1.02                04/89    MPW 3.1
  39. #
  40. #    Components:
  41. #                TESample.p            April 1, 1989
  42. #                TESample.c            April 1, 1989
  43. #                TESampleGlue.a        April 1, 1989
  44. #                TESample.r            April 1, 1989
  45. #                TESample.h            April 1, 1989
  46. #                [P]TESample.make    April 1, 1989
  47. #                [C]TESample.make    April 1, 1989
  48. #
  49. #    TESample is an example application that demonstrates how 
  50. #    to initialize the commonly used toolbox managers, operate 
  51. #    successfully under MultiFinder, handle desk accessories and 
  52. #    create, grow, and zoom windows. The fundamental TextEdit 
  53. #    toolbox calls and TextEdit autoscroll are demonstrated. It 
  54. #    also shows how to create and maintain scrollbar controls.
  55. #
  56. #    It does not by any means demonstrate all the techniques you 
  57. #    need for a large application. In particular, Sample does not 
  58. #    cover exception handling, multiple windows/documents, 
  59. #    sophisticated memory management, printing, or undo. All of 
  60. #    these are vital parts of a normal full-sized application.
  61. #
  62. #    This application is an example of the form of a Macintosh 
  63. #    application; it is NOT a template. It is NOT intended to be 
  64. #    used as a foundation for the next world-class, best-selling, 
  65. #    600K application. A stick figure drawing of the human body may 
  66. #    be a good example of the form for a painting, but that does not 
  67. #    mean it should be used as the basis for the next Mona Lisa.
  68. #
  69. #    We recommend that you review this program or Sample before 
  70. #    beginning a new application. Sample is a simple app. which doesn’t 
  71. #    use TextEdit or the Control Manager.
  72. #
  73. ------------------------------------------------------------------------------*/
  74.  
  75.  
  76. /* Segmentation strategy:
  77.  
  78.    This program consists of three segments. Main contains most of the code,
  79.    including the MPW libraries, and the main program. Initialize contains
  80.    code that is only used once, during startup, and can be unloaded after the
  81.    program starts. %A5Init is automatically created by the Linker to initialize
  82.    globals for the MPW libraries and is unloaded right away. */
  83.  
  84.  
  85. /* SetPort strategy:
  86.  
  87.    Toolbox routines do not change the current port. In spite of this, in this
  88.    program we use a strategy of calling SetPort whenever we want to draw or
  89.    make calls which depend on the current port. This makes us less vulnerable
  90.    to bugs in other software which might alter the current port (such as the
  91.    bug (feature?) in many desk accessories which change the port on OpenDeskAcc).
  92.    Hopefully, this also makes the routines from this program more self-contained,
  93.    since they don't depend on the current port setting. */
  94.  
  95.  
  96. /* Clipboard strategy:
  97.  
  98.    This program does not maintain a private scrap. Whenever a cut, copy, or paste
  99.    occurs, we import/export from the public scrap to TextEdit's scrap right away,
  100.    using the TEToScrap and TEFromScrap routines. If we did use a private scrap,
  101.    the import/export would be in the activate/deactivate event and suspend/resume
  102.    event routines. */
  103.  
  104. /* A/UX is case sensitive, so use correct case for include file names */
  105.  
  106.  
  107. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  108.   Next Lines have includes added for TextPert sample. Those lines are indicated.
  109. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  110.  
  111.  
  112. #include <values.h>
  113. #include <types.h>
  114. #include <quickdraw.h>
  115. #include <fonts.h>
  116. #include <events.h>
  117. #include <controls.h>
  118. #include <windows.h>
  119. #include <menus.h>
  120. #include <textedit.h>
  121. #include <dialogs.h>
  122. #include <desk.h>
  123. #include <scrap.h>
  124. #include <toolutils.h>
  125. #include <memory.h>
  126. #include <segload.h>
  127. #include <files.h>
  128. #include <osutils.h>
  129. #include <osevents.h>
  130. #include <diskinit.h>
  131. #include <packages.h>
  132. #include "Example2.h"        /* bring in all the #defines for TESample */
  133. #include <traps.h>
  134.  
  135.  
  136. #include "Example2_TextPert.h"
  137.     /* End of TexPert sample lines */
  138.  
  139.  
  140. /* A DocumentRecord contains the WindowRecord for one of our document windows,
  141.    as well as the TEHandle for the text we are editing. Other document fields
  142.    can be added to this record as needed. For a similar example, see how the
  143.    Window Manager and Dialog Manager add fields after the GrafPort. */
  144. typedef struct {
  145.     WindowRecord    docWindow;
  146.     TEHandle        docTE;
  147.     ControlHandle    docVScroll;
  148.     ControlHandle    docHScroll;
  149.     ProcPtr            docClik;
  150. } DocumentRecord, *DocumentPeek;
  151.  
  152.  
  153. /* The "g" prefix is used to emphasize that a variable is global. */
  154.  
  155. /* GMac is used to hold the result of a SysEnvirons call. This makes
  156.    it convenient for any routine to check the environment. It is
  157.    global information, anyway. */
  158. SysEnvRec    gMac;                /* set up by Initialize */
  159.  
  160. /* GHasWaitNextEvent is set at startup, and tells whether the WaitNextEvent
  161.    trap is available. If it is false, we know that we must call GetNextEvent. */
  162. Boolean        gHasWaitNextEvent;    /* set up by Initialize */
  163.  
  164. /* GInBackground is maintained by our OSEvent handling routines. Any part of
  165.    the program can check it to find out if it is currently in the background. */
  166. Boolean        gInBackground;        /* maintained by Initialize and DoEvent */
  167.  
  168. /* GNumDocuments is used to keep track of how many open documents there are
  169.    at any time. It is maintained by the routines that open and close documents. */
  170. short        gNumDocuments;        /* maintained by Initialize, DoNew, and DoCloseWindow */
  171.  
  172.  
  173. /* Here are declarations for all of the C routines. In MPW 3.0 we can use
  174.    actual prototypes for parameter type checking. A/UX C does not grok
  175.    prototypes, so eliminate them under A/UX */
  176.     void AlertUser( short error );
  177.     void EventLoop( void );
  178.     void DoEvent( EventRecord *event );
  179.     void AdjustCursor( Point mouse, RgnHandle region );
  180.     void GetGlobalMouse( Point *mouse );
  181.     void DoGrowWindow( WindowPtr window, EventRecord *event );
  182.     void DoZoomWindow( WindowPtr window, short part );
  183.     void ResizeWindow( WindowPtr window );
  184.     void GetLocalUpdateRgn( WindowPtr window, RgnHandle localRgn );
  185.     void DoUpdate( WindowPtr window );
  186.     void DoDeactivate( WindowPtr window );
  187.     void DoActivate( WindowPtr window, Boolean becomingActive );
  188.     void DoContentClick( WindowPtr window, EventRecord *event );
  189.     void DoKeyDown( EventRecord *event );
  190.     unsigned long GetSleep( void );
  191.     void CommonAction( ControlHandle control, short *amount );
  192.     pascal void VActionProc( ControlHandle control, short part );
  193.     pascal void HActionProc( ControlHandle control, short part );
  194.     void DoIdle( void );
  195.     void DrawWindow( WindowPtr window );
  196.     void AdjustMenus( void );
  197.     void DoMenuCommand( long menuResult );
  198.     void DoNew( void );
  199.     Boolean DoCloseWindow( WindowPtr window );
  200.     void Terminate( void );
  201.     void Initialize( void );
  202.     void BigBadError( short error );
  203.     void GetTERect( WindowPtr window, Rect *teRect );
  204.     void AdjustViewRect( TEHandle docTE );
  205.     void AdjustTE( WindowPtr window );
  206.     void AdjustHV( Boolean isVert, ControlHandle control, TEHandle docTE,
  207.                     Boolean canRedraw );
  208.     void AdjustScrollValues( WindowPtr window, Boolean canRedraw );
  209.     void AdjustScrollSizes( WindowPtr window );
  210.     void AdjustScrollbars( WindowPtr window, Boolean needsResize );
  211.     pascal void PascalClikLoop();
  212.     pascal ProcPtr GetOldClikLoop();
  213.     Boolean IsAppWindow( WindowPtr window );
  214.     Boolean IsDAWindow( WindowPtr window );
  215.     Boolean TrapAvailable( short tNumber, TrapType tType );
  216.  
  217.  
  218. /* Define HiWrd and LoWrd macros for efficiency. */
  219. #define HiWrd(aLong)    (((aLong) >> 16) & 0xFFFF)
  220. #define LoWrd(aLong)    ((aLong) & 0xFFFF)
  221.  
  222. /* Define TopLeft and BotRight macros for convenience. Notice the implicit
  223.    dependency on the ordering of fields within a Rect */
  224. #define TopLeft(aRect)    (* (Point *) &(aRect).top)
  225. #define BotRight(aRect)    (* (Point *) &(aRect).bottom)
  226.  
  227.  
  228. /* This routine is part of the MPW runtime library. This external
  229.    reference to it is done so that we can unload its segment, %A5Init. */
  230.  
  231. extern void _DataInit();
  232.  
  233.  
  234. /* A reference to our assembly language routine that gets attached to the clikLoop
  235. field of our TE record. */
  236.  
  237. extern pascal void AsmClikLoop();
  238.  
  239. #pragma segment Main
  240. main()
  241. {
  242.     UnloadSeg((Ptr) _DataInit);        /* note that _DataInit must not be in Main! */
  243.     
  244.     /* 1.01 - call to ForceEnvirons removed */
  245.     
  246.     /*    If you have stack requirements that differ from the default,
  247.         then you could use SetApplLimit to increase StackSpace at 
  248.         this point, before calling MaxApplZone. */
  249.         
  250.     /* Whe increase in 10K the StackSpace, so it will be 18K */
  251.  
  252.     SetApplLimit((Ptr)((long)(GetApplLimit()) - 10240));
  253.         
  254.     MaxApplZone();                    /* expand the heap so code segments load at the top */
  255.  
  256.     Initialize();                    /* initialize the program */
  257.     UnloadSeg((Ptr) Initialize);    /* note that Initialize must not be in Main! */
  258.  
  259.     EventLoop();                    /* call the main event loop */
  260. }
  261.  
  262.  
  263. /* Get events forever, and handle them by calling DoEvent.
  264.    Also call AdjustCursor each time through the loop. */
  265.  
  266. #pragma segment Main
  267. void EventLoop()
  268. {
  269.     RgnHandle    cursorRgn;
  270.     Boolean        gotEvent;
  271.     EventRecord    event;
  272.     Point        mouse;
  273.  
  274.     cursorRgn = NewRgn();            /* we’ll pass WNE an empty region the 1st time thru */
  275.     do {
  276.         /* use WNE if it is available */
  277.         if ( gHasWaitNextEvent ) {
  278.             GetGlobalMouse(&mouse);
  279.             AdjustCursor(mouse, cursorRgn);
  280.             gotEvent = WaitNextEvent(everyEvent, &event, GetSleep(), cursorRgn);
  281.         }
  282.         else {
  283.             SystemTask();
  284.             gotEvent = GetNextEvent(everyEvent, &event);
  285.         }
  286.         if ( gotEvent ) {
  287.             /* make sure we have the right cursor before handling the event */
  288.             AdjustCursor(event.where, cursorRgn);
  289.             DoEvent(&event);
  290.         } else DoIdle();
  291.         /*    If you are using modeless dialogs that have editText items,
  292.             you will want to call IsDialogEvent to give the caret a chance
  293.             to blink, even if WNE/GNE returned FALSE. However, check FrontWindow
  294.             for a non-NIL value before calling IsDialogEvent. */
  295.     } while ( true );    /* loop forever; we quit via ExitToShell */
  296. } /*EventLoop*/
  297.  
  298.  
  299. /* Do the right thing for an event. Determine what kind of event it is, and call
  300.  the appropriate routines. */
  301.  
  302. #pragma segment Main
  303. void DoEvent(event)
  304.     EventRecord    *event;
  305. {
  306.     short        part, err;
  307.     WindowPtr    window;
  308.     char        key;
  309.     Point        aPoint;
  310.  
  311.     switch ( event->what ) {
  312.         case nullEvent:
  313.             /* we idle for null/mouse moved events ands for events which aren’t
  314.                 ours (see EventLoop) */
  315.             DoIdle();
  316.             break;
  317.         case mouseDown:
  318.             part = FindWindow(event->where, &window);
  319.             switch ( part ) {
  320.                 case inMenuBar:             /* process a mouse menu command (if any) */
  321.                     AdjustMenus();    /* bring ’em up-to-date */
  322.                     DoMenuCommand(MenuSelect(event->where));
  323.                     break;
  324.                 case inSysWindow:           /* let the system handle the mouseDown */
  325.                     SystemClick(event, window);
  326.                     break;
  327.                 case inContent:
  328.                     if ( window != FrontWindow() ) {
  329.                         SelectWindow(window);
  330.                         /*DoEvent(event);*/    /* use this line for "do first click" */
  331.                     } else
  332.                         DoContentClick(window, event);
  333.                     break;
  334.                 case inDrag:                /* pass screenBits.bounds to get all gDevices */
  335.                     DragWindow(window, event->where, &qd.screenBits.bounds);
  336.                     break;
  337.                 case inGoAway:
  338.                     if ( TrackGoAway(window, event->where) )
  339.                         DoCloseWindow(window); /* we don’t care if the user cancelled */
  340.                     break;
  341.                 case inGrow:
  342.                     DoGrowWindow(window, event);
  343.                     break;
  344.                 case inZoomIn:
  345.                 case inZoomOut:
  346.                 if ( TrackBox(window, event->where, part) )
  347.                         DoZoomWindow(window, part);
  348.                     break;
  349.             }
  350.             break;
  351.         case keyDown:
  352.         case autoKey:                       /* check for menukey equivalents */
  353.             key = event->message & charCodeMask;
  354.             if ( event->modifiers & cmdKey ) {    /* Command key down */
  355.                 if ( event->what == keyDown ) {
  356.                     AdjustMenus();            /* enable/disable/check menu items properly */
  357.                     DoMenuCommand(MenuKey(key));
  358.                 }
  359.             } else
  360.                 DoKeyDown(event);
  361.             break;
  362.         case activateEvt:
  363.             DoActivate((WindowPtr) event->message, (event->modifiers & activeFlag) != 0);
  364.             break;
  365.         case updateEvt:
  366.             DoUpdate((WindowPtr) event->message);
  367.             break;
  368.         /*    1.01 - It is not a bad idea to at least call DIBadMount in response
  369.             to a diskEvt, so that the user can format a floppy. */
  370.         case diskEvt:
  371.             if ( HiWord(event->message) != noErr ) {
  372.                 SetPt(&aPoint, kDILeft, kDITop);
  373.                 err = DIBadMount(aPoint, event->message);
  374.             }
  375.             break;
  376.         case kOSEvent:
  377.         /*    1.02 - must BitAND with 0x0FF to get only low byte */
  378.             switch ((event->message >> 24) & 0x0FF) {        /* high byte of message */
  379.                 case kMouseMovedMessage:
  380.                     DoIdle();                    /* mouse-moved is also an idle event */
  381.                     break;
  382.                 case kSuspendResumeMessage:        /* suspend/resume is also an activate/deactivate */
  383.                     gInBackground = (event->message & kResumeMask) == 0;
  384.                     DoActivate(FrontWindow(), !gInBackground);
  385.                     break;
  386.             }
  387.             break;
  388.     }
  389. } /*DoEvent*/
  390.  
  391.  
  392. /*    Change the cursor's shape, depending on its position. This also calculates the region
  393.     where the current cursor resides (for WaitNextEvent). When the mouse moves outside of
  394.     this region, an event is generated. If there is more to the event than just
  395.     “the mouse moved”, we get called before the event is processed to make sure
  396.     the cursor is the right one. In any (ahem) event, this is called again before we
  397.     fall back into WNE. */
  398.  
  399. #pragma segment Main
  400. void AdjustCursor(mouse,region)
  401.     Point        mouse;
  402.     RgnHandle    region;
  403. {
  404.     WindowPtr    window;
  405.     RgnHandle    arrowRgn;
  406.     RgnHandle    iBeamRgn;
  407.     Rect        iBeamRect;
  408.  
  409.     window = FrontWindow();    /* we only adjust the cursor when we are in front */
  410.     if ( (! gInBackground) && (! IsDAWindow(window)) ) {
  411.         /* calculate regions for different cursor shapes */
  412.         arrowRgn = NewRgn();
  413.         iBeamRgn = NewRgn();
  414.  
  415.         /* start arrowRgn wide open */
  416.         SetRectRgn(arrowRgn, kExtremeNeg, kExtremeNeg, kExtremePos, kExtremePos);
  417.  
  418.         /* calculate iBeamRgn */
  419.         if ( IsAppWindow(window) ) {
  420.             iBeamRect = (*((DocumentPeek) window)->docTE)->viewRect;
  421.             SetPort(window);    /* make a global version of the viewRect */
  422.             LocalToGlobal(&TopLeft(iBeamRect));
  423.             LocalToGlobal(&BotRight(iBeamRect));
  424.             RectRgn(iBeamRgn, &iBeamRect);
  425.             /* we temporarily change the port’s origin to “globalfy” the visRgn */
  426.             SetOrigin(-window->portBits.bounds.left, -window->portBits.bounds.top);
  427.             SectRgn(iBeamRgn, window->visRgn, iBeamRgn);
  428.             SetOrigin(0, 0);
  429.         }
  430.  
  431.         /* subtract other regions from arrowRgn */
  432.         DiffRgn(arrowRgn, iBeamRgn, arrowRgn);
  433.  
  434.         /* change the cursor and the region parameter */
  435.         if ( PtInRgn(mouse, iBeamRgn) ) {
  436.             SetCursor(*GetCursor(iBeamCursor));
  437.             CopyRgn(iBeamRgn, region);
  438.         } else {
  439.             SetCursor(&qd.arrow);
  440.             CopyRgn(arrowRgn, region);
  441.         }
  442.  
  443.         DisposeRgn(arrowRgn);
  444.         DisposeRgn(iBeamRgn);
  445.     }
  446. } /*AdjustCursor*/
  447.  
  448.  
  449. /*    Get the global coordinates of the mouse. When you call OSEventAvail
  450.     it will return either a pending event or a null event. In either case,
  451.     the where field of the event record will contain the current position
  452.     of the mouse in global coordinates and the modifiers field will reflect
  453.     the current state of the modifiers. Another way to get the global
  454.     coordinates is to call GetMouse and LocalToGlobal, but that requires
  455.     being sure that thePort is set to a valid port. */
  456.  
  457. #pragma segment Main
  458. void GetGlobalMouse(mouse)
  459.     Point    *mouse;
  460. {
  461.     EventRecord    event;
  462.     
  463.     OSEventAvail(kNoEvents, &event);    /* we aren't interested in any events */
  464.     *mouse = event.where;                /* just the mouse position */
  465. } /*GetGlobalMouse*/
  466.  
  467.  
  468. /*    Called when a mouseDown occurs in the grow box of an active window. In
  469.     order to eliminate any 'flicker', we want to invalidate only what is
  470.     necessary. Since ResizeWindow invalidates the whole portRect, we save
  471.     the old TE viewRect, intersect it with the new TE viewRect, and
  472.     remove the result from the update region. However, we must make sure
  473.     that any old update region that might have been around gets put back. */
  474.  
  475. #pragma segment Main
  476. void DoGrowWindow(window,event)
  477.     WindowPtr    window;
  478.     EventRecord    *event;
  479. {
  480.     long        growResult;
  481.     Rect        tempRect;
  482.     RgnHandle    tempRgn;
  483.     DocumentPeek doc;
  484.     
  485.     tempRect = qd.screenBits.bounds;                    /* set up limiting values */
  486.     tempRect.left = kMinDocDim;
  487.     tempRect.top = kMinDocDim;
  488.     growResult = GrowWindow(window, event->where, &tempRect);
  489.     /* see if it really changed size */
  490.     if ( growResult != 0 ) {
  491.         doc = (DocumentPeek) window;
  492.         tempRect = (*doc->docTE)->viewRect;                /* save old text box */
  493.         tempRgn = NewRgn();
  494.         GetLocalUpdateRgn(window, tempRgn);                /* get localized update region */
  495.         SizeWindow(window, LoWrd(growResult), HiWrd(growResult), true);
  496.         ResizeWindow(window);
  497.         /* calculate & validate the region that hasn’t changed so it won’t get redrawn */
  498.         SectRect(&tempRect, &(*doc->docTE)->viewRect, &tempRect);
  499.         ValidRect(&tempRect);                            /* take it out of update */
  500.         InvalRgn(tempRgn);                                /* put back any prior update */
  501.         DisposeRgn(tempRgn);
  502.     }
  503. } /* DoGrowWindow */
  504.  
  505.  
  506. /*     Called when a mouseClick occurs in the zoom box of an active window.
  507.     Everything has to get re-drawn here, so we don't mind that
  508.     ResizeWindow invalidates the whole portRect. */
  509.  
  510. #pragma segment Main
  511. void DoZoomWindow(window,part)
  512.     WindowPtr    window;
  513.     short        part;
  514. {
  515.     EraseRect(&window->portRect);
  516.     ZoomWindow(window, part, window == FrontWindow());
  517.     ResizeWindow(window);
  518. } /*  DoZoomWindow */
  519.  
  520.  
  521. /* Called when the window has been resized to fix up the controls and content. */
  522. #pragma segment Main
  523. void ResizeWindow(window)
  524.     WindowPtr    window;
  525. {
  526.     AdjustScrollbars(window, true);
  527.     AdjustTE(window);
  528.     InvalRect(&window->portRect);
  529. } /* ResizeWindow */
  530.  
  531.  
  532. /* Returns the update region in local coordinates */
  533. #pragma segment Main
  534. void GetLocalUpdateRgn(window,localRgn)
  535.     WindowPtr    window;
  536.     RgnHandle    localRgn;
  537. {
  538.     CopyRgn(((WindowPeek) window)->updateRgn, localRgn);    /* save old update region */
  539.     OffsetRgn(localRgn, window->portBits.bounds.left, window->portBits.bounds.top);
  540. } /* GetLocalUpdateRgn */
  541.  
  542.  
  543. /*    This is called when an update event is received for a window.
  544.     It calls DrawWindow to draw the contents of an application window.
  545.     As an efficiency measure that does not have to be followed, it
  546.     calls the drawing routine only if the visRgn is non-empty. This
  547.     will handle situations where calculations for drawing or drawing
  548.     itself is very time-consuming. */
  549.  
  550. #pragma segment Main
  551. void DoUpdate(window)
  552.     WindowPtr    window;
  553. {
  554.     if ( IsAppWindow(window) ) {
  555.         BeginUpdate(window);                /* this sets up the visRgn */
  556.         if ( ! EmptyRgn(window->visRgn) )    /* draw if updating needs to be done */
  557.             DrawWindow(window);
  558.         EndUpdate(window);
  559.     }
  560. } /*DoUpdate*/
  561.  
  562.  
  563. /*    This is called when a window is activated or deactivated.
  564.     It calls TextEdit to deal with the selection. */
  565.  
  566. #pragma segment Main
  567. void DoActivate(window, becomingActive)
  568.     WindowPtr    window;
  569.     Boolean        becomingActive;
  570. {
  571.     RgnHandle    tempRgn, clipRgn;
  572.     Rect        growRect;
  573.     DocumentPeek doc;
  574.     
  575.     if ( IsAppWindow(window) ) {
  576.         doc = (DocumentPeek) window;
  577.         if ( becomingActive ) {
  578.             /*    since we don’t want TEActivate to draw a selection in an area where
  579.                 we’re going to erase and redraw, we’ll clip out the update region
  580.                 before calling it. */
  581.             tempRgn = NewRgn();
  582.             clipRgn = NewRgn();
  583.             GetLocalUpdateRgn(window, tempRgn);            /* get localized update region */
  584.             GetClip(clipRgn);
  585.             DiffRgn(clipRgn, tempRgn, tempRgn);            /* subtract updateRgn from clipRgn */
  586.             SetClip(tempRgn);
  587.             TEActivate(doc->docTE);
  588.             SetClip(clipRgn);                            /* restore the full-blown clipRgn */
  589.             DisposeRgn(tempRgn);
  590.             DisposeRgn(clipRgn);
  591.             
  592.             /* the controls must be redrawn on activation: */
  593.             (*doc->docVScroll)->contrlVis = kControlVisible;
  594.             (*doc->docHScroll)->contrlVis = kControlVisible;
  595.             InvalRect(&(*doc->docVScroll)->contrlRect);
  596.             InvalRect(&(*doc->docHScroll)->contrlRect);
  597.             /* the growbox needs to be redrawn on activation: */
  598.             growRect = window->portRect;
  599.             /* adjust for the scrollbars */
  600.             growRect.top = growRect.bottom - kScrollbarAdjust;
  601.             growRect.left = growRect.right - kScrollbarAdjust;
  602.             InvalRect(&growRect);
  603.         }
  604.         else {        
  605.             TEDeactivate(doc->docTE);
  606.             /* the controls must be hidden on deactivation: */
  607.             HideControl(doc->docVScroll);
  608.             HideControl(doc->docHScroll);
  609.             /* the growbox should be changed immediately on deactivation: */
  610.             DrawGrowIcon(window);
  611.         }
  612.     }
  613. } /*DoActivate*/
  614.  
  615.  
  616. /*    This is called when a mouseDown occurs in the content of a window. */
  617.  
  618. #pragma segment Main
  619. void DoContentClick(window,event)
  620.     WindowPtr    window;
  621.     EventRecord    *event;
  622. {
  623.     Point        mouse;
  624.     ControlHandle control;
  625.     short        part, value;
  626.     Boolean        shiftDown;
  627.     DocumentPeek doc;
  628.     Rect        teRect;
  629.  
  630.     if ( IsAppWindow(window) ) {
  631.         SetPort(window);
  632.         mouse = event->where;                            /* get the click position */
  633.         GlobalToLocal(&mouse);
  634.         doc = (DocumentPeek) window;
  635.         /* see if we are in the viewRect. if so, we won’t check the controls */
  636.         GetTERect(window, &teRect);
  637.         if ( PtInRect(mouse, &teRect) ) {
  638.             /* see if we need to extend the selection */
  639.             shiftDown = (event->modifiers & shiftKey) != 0;    /* extend if Shift is down */
  640.             TEClick(mouse, shiftDown, doc->docTE);
  641.         } else {
  642.             part = FindControl(mouse, window, &control);
  643.             switch ( part ) {
  644.                 case 0:                            /* do nothing for viewRect case */
  645.                     break;
  646.                 case inThumb:
  647.                     value = GetCtlValue(control);
  648.                     part = TrackControl(control, mouse, nil);
  649.                     if ( part != 0 ) {
  650.                         value -= GetCtlValue(control);
  651.                         /* value now has CHANGE in value; if value changed, scroll */
  652.                         if ( value != 0 )
  653.                             if ( control == doc->docVScroll )
  654.                                 TEScroll(0, value * (*doc->docTE)->lineHeight, doc->docTE);
  655.                             else
  656.                                 TEScroll(value, 0, doc->docTE);
  657.                     }
  658.                     break;
  659.                 default:                        /* they clicked in an arrow, so track & scroll */
  660.                     if ( control == doc->docVScroll )
  661.                         value = TrackControl(control, mouse, (ProcPtr) VActionProc);
  662.                     else
  663.                         value = TrackControl(control, mouse, (ProcPtr) HActionProc);
  664.                     break;
  665.             }
  666.         }
  667.     }
  668. } /*DoContentClick*/
  669.  
  670.  
  671. /* This is called for any keyDown or autoKey events, except when the
  672.  Command key is held down. It looks at the frontmost window to decide what
  673.  to do with the key typed. */
  674.  
  675. #pragma segment Main
  676. void DoKeyDown(event)
  677.     EventRecord    *event;
  678. {
  679.     WindowPtr    window;
  680.     char        key;
  681.     TEHandle    te;
  682.  
  683.     window = FrontWindow();
  684.     if ( IsAppWindow(window) ) {
  685.         te = ((DocumentPeek) window)->docTE;
  686.         key = event->message & charCodeMask;
  687.         /* we have a char. for our window; see if we are still below TextEdit’s
  688.             limit for the number of characters (but deletes are always rad) */
  689.         if ( key == kDelChar ||
  690.                 (*te)->teLength - ((*te)->selEnd - (*te)->selStart) + 1 <
  691.                 kMaxTELength ) {
  692.             TEKey(key, te);
  693.             AdjustScrollbars(window, false);
  694.             AdjustTE(window);
  695.         } else
  696.             AlertUser(eExceedChar);
  697.     }
  698. } /*DoKeyDown*/
  699.  
  700.  
  701. /*    Calculate a sleep value for WaitNextEvent. This takes into account the things
  702.     that DoIdle does with idle time. */
  703.  
  704. #pragma segment Main
  705. unsigned long GetSleep()
  706. {
  707.     long        sleep;
  708.     WindowPtr    window;
  709.     TEHandle    te;
  710.  
  711.     sleep = MAXLONG;                        /* default value for sleep */
  712.     if ( !gInBackground ) {
  713.         window = FrontWindow();            /* and the front window is ours... */
  714.         if ( IsAppWindow(window) ) {
  715.             te = ((DocumentPeek) (window))->docTE;    /* and the selection is an insertion point... */
  716.             if ( (*te)->selStart == (*te)->selEnd )
  717.                 sleep = GetCaretTime();        /* blink time for the insertion point */
  718.         }
  719.     }
  720.     return sleep;
  721. } /*GetSleep*/
  722.  
  723.  
  724. /*    Common algorithm for pinning the value of a control. It returns the actual amount
  725.     the value of the control changed. Note the pinning is done for the sake of returning
  726.     the amount the control value changed. */
  727.  
  728. #pragma segment Main
  729. void CommonAction(control,amount)
  730.     ControlHandle control;
  731.     short        *amount;
  732. {
  733.     short        value, max;
  734.     
  735.     value = GetCtlValue(control);    /* get current value */
  736.     max = GetCtlMax(control);        /* and maximum value */
  737.     *amount = value - *amount;
  738.     if ( *amount < 0 )
  739.         *amount = 0;
  740.     else if ( *amount > max )
  741.         *amount = max;
  742.     SetCtlValue(control, *amount);
  743.     *amount = value - *amount;        /* calculate the real change */
  744. } /* CommonAction */
  745.  
  746.  
  747. /* Determines how much to change the value of the vertical scrollbar by and how
  748.     much to scroll the TE record. */
  749.  
  750. #pragma segment Main
  751. pascal void VActionProc(control,part)
  752.     ControlHandle control;
  753.     short        part;
  754. {
  755.     short        amount;
  756.     WindowPtr    window;
  757.     TEPtr        te;
  758.     
  759.     if ( part != 0 ) {                /* if it was actually in the control */
  760.         window = (*control)->contrlOwner;
  761.         te = *((DocumentPeek) window)->docTE;
  762.         switch ( part ) {
  763.             case inUpButton:
  764.             case inDownButton:        /* one line */
  765.                 amount = 1;
  766.                 break;
  767.             case inPageUp:            /* one page */
  768.             case inPageDown:
  769.                 amount = (te->viewRect.bottom - te->viewRect.top) / te->lineHeight;
  770.                 break;
  771.         }
  772.         if ( (part == inDownButton) || (part == inPageDown) )
  773.             amount = -amount;        /* reverse direction for a downer */
  774.         CommonAction(control, &amount);
  775.         if ( amount != 0 )
  776.             TEScroll(0, amount * te->lineHeight, ((DocumentPeek) window)->docTE);
  777.     }
  778. } /* VActionProc */
  779.  
  780.  
  781. /* Determines how much to change the value of the horizontal scrollbar by and how
  782. much to scroll the TE record. */
  783.  
  784. #pragma segment Main
  785. pascal void HActionProc(control,part)
  786.     ControlHandle control;
  787.     short        part;
  788. {
  789.     short        amount;
  790.     WindowPtr    window;
  791.     TEPtr        te;
  792.     
  793.     if ( part != 0 ) {
  794.         window = (*control)->contrlOwner;
  795.         te = *((DocumentPeek) window)->docTE;
  796.         switch ( part ) {
  797.             case inUpButton:
  798.             case inDownButton:        /* a few pixels */
  799.                 amount = kButtonScroll;
  800.                 break;
  801.             case inPageUp:            /* a page */
  802.             case inPageDown:
  803.                 amount = te->viewRect.right - te->viewRect.left;
  804.                 break;
  805.         }
  806.         if ( (part == inDownButton) || (part == inPageDown) )
  807.             amount = -amount;        /* reverse direction */
  808.         CommonAction(control, &amount);
  809.         if ( amount != 0 )
  810.             TEScroll(amount, 0, ((DocumentPeek) window)->docTE);
  811.     }
  812. } /* VActionProc */
  813.  
  814.  
  815. /* This is called whenever we get a null event et al.
  816.  It takes care of necessary periodic actions. For this program, it calls TEIdle. */
  817.  
  818. #pragma segment Main
  819. void DoIdle()
  820. {
  821.     WindowPtr    window;
  822.  
  823.     window = FrontWindow();
  824.     if ( IsAppWindow(window) )
  825.         TEIdle(((DocumentPeek) window)->docTE);
  826. } /*DoIdle*/
  827.  
  828.  
  829. /* Draw the contents of an application window. */
  830.  
  831. #pragma segment Main
  832. void DrawWindow(window)
  833.     WindowPtr    window;
  834. {
  835.     SetPort(window);
  836.     EraseRect(&window->portRect);
  837.     DrawControls(window);
  838.     DrawGrowIcon(window);
  839.     TEUpdate(&window->portRect, ((DocumentPeek) window)->docTE);
  840. } /*DrawWindow*/
  841.  
  842.  
  843. /*    Enable and disable menus based on the current state.
  844.     The user can only select enabled menu items. We set up all the menu items
  845.     before calling MenuSelect or MenuKey, since these are the only times that
  846.     a menu item can be selected. Note that MenuSelect is also the only time
  847.     the user will see menu items. This approach to deciding what enable/
  848.     disable state a menu item has the advantage of concentrating all
  849.     the decision-making in one routine, as opposed to being spread throughout
  850.     the application. Other application designs may take a different approach
  851.     that may or may not be as valid. */
  852.  
  853. #pragma segment Main
  854. void AdjustMenus()
  855. {
  856.     WindowPtr    window;
  857.     MenuHandle    menu;
  858.     long        offset;
  859.     Boolean        undo;
  860.     Boolean        cutCopyClear;
  861.     Boolean        paste;
  862.     TEHandle    te;
  863.  
  864.     window = FrontWindow();
  865.     menu = GetMHandle(mFile);
  866.  
  867.     if ( gNumDocuments < kMaxOpenDocuments )
  868.         EnableItem(menu, iNew);        /* New is enabled when we can open more documents */
  869.     else
  870.         DisableItem(menu, iNew);
  871.     
  872. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  873.         Next Part has been added for TextPert reader sample.
  874. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  875.  
  876.     if (hLO) /* if there is any layout it can be saved */
  877.         EnableItem(Menu_TextPert__DTK, MItem_Save_Layout);
  878.     else
  879.         DisableItem(Menu_TextPert__DTK, MItem_Save_Layout);
  880.     
  881.     /* We can read if there is any layout and we can have
  882.         any document more. */
  883.     if ((hLO) && ( gNumDocuments < kMaxOpenDocuments ))
  884.         EnableItem(Menu_TextPert__DTK, MItem_Read_Image);
  885.     else
  886.         DisableItem(Menu_TextPert__DTK, MItem_Read_Image);
  887.         
  888.     if (hIM) /* We can do analyzepage if there is any. */
  889.         EnableItem(Menu_TextPert__DTK, MItem_Analize_Page);
  890.     else
  891.         DisableItem(Menu_TextPert__DTK, MItem_Analize_Page);
  892.  
  893.  
  894.  
  895.         
  896.     if ( window != nil )            /* Close is enabled when there is a window to close */
  897.         EnableItem(menu, iClose);
  898.     else
  899.         DisableItem(menu, iClose);
  900.  
  901.     menu = GetMHandle(mEdit);
  902.     undo = false;
  903.     cutCopyClear = false;
  904.     paste = false;
  905.     if ( IsDAWindow(window) ) {
  906.         undo = true;                /* all editing is enabled for DA windows */
  907.         cutCopyClear = true;
  908.         paste = true;
  909.     } else if ( IsAppWindow(window) ) {
  910.         te = ((DocumentPeek) window)->docTE;
  911.         if ( (*te)->selStart < (*te)->selEnd )
  912.             cutCopyClear = true;
  913.             /* Cut, Copy, and Clear is enabled for app. windows with selections */
  914.         if ( GetScrap(nil, 'TEXT', &offset)  > 0)
  915.             paste = true;            /* if there’s any text in the clipboard, paste is enabled */
  916.     }
  917.     if ( undo )
  918.         EnableItem(menu, iUndo);
  919.     else
  920.         DisableItem(menu, iUndo);
  921.     if ( cutCopyClear ) {
  922.         EnableItem(menu, iCut);
  923.         EnableItem(menu, iCopy);
  924.         EnableItem(menu, iClear);
  925.     } else {
  926.         DisableItem(menu, iCut);
  927.         DisableItem(menu, iCopy);
  928.         DisableItem(menu, iClear);
  929.     }
  930.     if ( paste )
  931.         EnableItem(menu, iPaste);
  932.     else
  933.         DisableItem(menu, iPaste);
  934. } /*AdjustMenus*/
  935.  
  936.  
  937. /*    This is called when an item is chosen from the menu bar (after calling
  938.     MenuSelect or MenuKey). It does the right thing for each command. */
  939.  
  940. #pragma segment Main
  941. void DoMenuCommand(menuResult)
  942.     long        menuResult;
  943. {
  944.     short        menuID, menuItem;
  945.     short        itemHit, daRefNum;
  946.     Str255        daName;
  947.     OSErr        saveErr;
  948.     TEHandle    te;
  949.     WindowPtr    window;
  950.     Handle        aHandle;
  951.     long        oldSize, newSize;
  952.     long        total, contig;
  953.  
  954.     window = FrontWindow();
  955.     menuID = HiWord(menuResult);    /* use macros for efficiency to... */
  956.     menuItem = LoWord(menuResult);    /* get menu item number and menu number */
  957.     switch ( menuID ) {
  958.         case mApple:
  959.             switch ( menuItem ) {
  960.                 case iAbout:        /* bring up alert for About */
  961.                     itemHit = Alert(rAboutAlert, nil);
  962.                     break;
  963.                 default:            /* all non-About items in this menu are DAs et al */
  964.                     /* type Str255 is an array in MPW 3 */
  965.                     GetItem(GetMHandle(mApple), menuItem, daName);
  966.                     daRefNum = OpenDeskAcc(daName);
  967.                     break;
  968.             }
  969.             break;
  970.         case mFile:
  971.             switch ( menuItem ) {
  972.                 case iNew:
  973.                     DoNew();
  974.                     break;
  975.                 case iClose:
  976.                     DoCloseWindow(FrontWindow());            /* ignore the result */
  977.                     break;
  978.                 case iQuit:
  979.                     Terminate();
  980.                     break;
  981.             }
  982.             break;
  983.         case mEdit:                    /* call SystemEdit for DA editing & MultiFinder */
  984.             if ( !SystemEdit(menuItem-1) ) {
  985.                 te = ((DocumentPeek) FrontWindow())->docTE;
  986.                 switch ( menuItem ) {
  987.                     case iCut:
  988.                         if ( ZeroScrap() == noErr ) {
  989.                             PurgeSpace(&total, &contig);
  990.                             if ((*te)->selEnd - (*te)->selStart + kTESlop > contig)
  991.                                 AlertUser(eNoSpaceCut);
  992.                             else 
  993.                                 {
  994.                                 TECut(te);
  995.                                 if ( TEToScrap() != noErr ) {
  996.                                     AlertUser(eNoCut);
  997.                                     ZeroScrap();
  998.                                 }
  999.                             }
  1000.                         }
  1001.                         break;
  1002.                     case iCopy:
  1003.                         if ( ZeroScrap() == noErr ) {
  1004.                             TECopy(te);    /* after copying, export the TE scrap */
  1005.                             if ( TEToScrap() != noErr ) {
  1006.                                 AlertUser(eNoCopy);
  1007.                                 ZeroScrap();
  1008.                             }
  1009.                         }
  1010.                         break;
  1011.                     case iPaste:    /* import the TE scrap before pasting */
  1012.                         if ( TEFromScrap() == noErr ) {
  1013.                             if ( TEGetScrapLen() + ((*te)->teLength -
  1014.                                 ((*te)->selEnd - (*te)->selStart)) > kMaxTELength )
  1015.                                 AlertUser(eExceedPaste);
  1016.                             else {
  1017.                                 aHandle = (Handle) TEGetText(te);
  1018.                                 oldSize = GetHandleSize(aHandle);
  1019.                                 newSize = oldSize + TEGetScrapLen() + kTESlop;
  1020.                                 SetHandleSize(aHandle, newSize);
  1021.                                 saveErr = MemError();
  1022.                                 SetHandleSize(aHandle, oldSize);
  1023.                                 if (saveErr != noErr)
  1024.                                     AlertUser(eNoSpacePaste);
  1025.                                 else
  1026.                                     TEPaste(te);
  1027.                             }
  1028.                         }
  1029.                         else
  1030.                             AlertUser(eNoPaste);
  1031.                         break;
  1032.                     case iClear:
  1033.                         TEDelete(te);
  1034.                         break;
  1035.                 }
  1036.             AdjustScrollbars(window, false);
  1037.             AdjustTE(window);
  1038.             }
  1039.             break;
  1040.             
  1041.             
  1042. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1043.         Next Part belongs to TextPert reader sample.
  1044. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  1045.  
  1046.         case Res_Menu_Open_Image:
  1047.             DoMenuOpen_Image(menuItem);   /* Go handle this Hier menu list */
  1048.             break;
  1049.     
  1050.         case Res_Menu_Analize_Page:
  1051.             DoMenuAnalize_Page(menuItem); /* Go handle this Hier menu list */
  1052.             break;
  1053.     
  1054.         case Res_Menu_TextPert__DTK:
  1055.             DoMenuTextPert__DTK(menuItem);/* Go handle this menu list */
  1056.             break;
  1057.  
  1058. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1059.         End of Part that belongs to TextPert reader sample.
  1060. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  1061.  
  1062.     }
  1063.     HiliteMenu(0);                    /* unhighlight what MenuSelect (or MenuKey) hilited */
  1064. } /*DoMenuCommand*/
  1065.  
  1066.  
  1067. /* Create a new document and window. */
  1068.  
  1069. #pragma segment Main
  1070.  
  1071. void DoNew()
  1072. {
  1073.     Boolean        good;
  1074.     Ptr            storage;
  1075.     WindowPtr    window;
  1076.     Rect        destRect, viewRect;
  1077.     DocumentPeek doc;
  1078.  
  1079.     storage = NewPtr(sizeof(DocumentRecord));
  1080.     if ( storage != nil ) {
  1081.         window =  GetNewWindow(rDocWindow, storage, (WindowPtr) -1);
  1082.         if ( window != nil ) {
  1083.             gNumDocuments += 1;            /* this will be decremented when we call DoCloseWindow */
  1084.             good = false;
  1085.             SetPort(window);
  1086.             doc =  (DocumentPeek) window;
  1087.             GetTERect(window, &viewRect);
  1088.             destRect = viewRect;
  1089.             destRect.right = destRect.left + kMaxDocWidth;
  1090.             doc->docTE = TENew(&destRect, &viewRect);
  1091.             good = doc->docTE != nil;    /* if TENew succeeded, we have a good document */
  1092.             if ( good ) {                /* 1.02 - good document? — proceed */
  1093.                 AdjustViewRect(doc->docTE);
  1094.                 TEAutoView(true, doc->docTE);
  1095.                 doc->docClik = (ProcPtr) (*doc->docTE)->clikLoop;
  1096.                 (*doc->docTE)->clikLoop = (ClikLoopProcPtr) AsmClikLoop;
  1097.             }
  1098.             
  1099.             if ( good ) {                /* good document? — get scrollbars */
  1100.                 doc->docVScroll = GetNewControl(rVScroll, window);
  1101.                 good = (doc->docVScroll != nil);
  1102.             }
  1103.             if ( good) {
  1104.                 doc->docHScroll = GetNewControl(rHScroll, window);
  1105.                 good = (doc->docHScroll != nil);
  1106.             }
  1107.             
  1108.             if ( good ) {                /* good? — adjust & draw the controls, draw the window */
  1109.                 /* false to AdjustScrollValues means musn’t redraw; technically, of course,
  1110.                 the window is hidden so it wouldn’t matter whether we called ShowControl or not. */
  1111.                 AdjustScrollValues(window, false);
  1112.                 ShowWindow(window);
  1113.             } else {
  1114.                 DoCloseWindow(window);    /* otherwise regret we ever created it... */
  1115.                 AlertUser(eNoWindow);            /* and tell user */
  1116.             }
  1117.         } else
  1118.             DisposPtr(storage);            /* get rid of the storage if it is never used */
  1119.     }
  1120. } /*DoNew*/
  1121.  
  1122.  
  1123. /* Close a window. This handles desk accessory and application windows. */
  1124.  
  1125. /*    1.01 - At this point, if there was a document associated with a
  1126.     window, you could do any document saving processing if it is 'dirty'.
  1127.     DoCloseWindow would return true if the window actually closed, i.e.,
  1128.     the user didn’t cancel from a save dialog. This result is handy when
  1129.     the user quits an application, but then cancels the save of a document
  1130.     associated with a window. */
  1131.  
  1132. #pragma segment Main
  1133. Boolean DoCloseWindow(window)
  1134.     WindowPtr    window;
  1135. {
  1136.     TEHandle    te;
  1137.  
  1138.     if ( IsDAWindow(window) )
  1139.         CloseDeskAcc(((WindowPeek) window)->windowKind);
  1140.     else if ( IsAppWindow(window) ) {
  1141.         te = ((DocumentPeek) window)->docTE;
  1142.         if ( te != nil )
  1143.             {
  1144.             
  1145. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1146.         Next Part belongs to TextPert reader sample.
  1147. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  1148.  
  1149.             if ((**te).teLength)
  1150.                 if (!(SaveText(te)))
  1151.                     return false;
  1152. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1153.         End of the Part that belongs to TextPert reader sample.
  1154. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  1155.  
  1156.             
  1157.             TEDispose(te);            /* dispose the TEHandle if we got far enough to make one */
  1158.             }
  1159.         /*    1.01 - We used to call DisposeWindow, but that was technically
  1160.             incorrect, even though we allocated storage for the window on
  1161.             the heap. We should instead call CloseWindow to have the structures
  1162.             taken care of and then dispose of the storage ourselves. */
  1163.         CloseWindow(window);
  1164.         DisposPtr((Ptr) window);
  1165.         gNumDocuments -= 1;
  1166.     }
  1167.     return true;
  1168. } /*DoCloseWindow*/
  1169.  
  1170.  
  1171. /**************************************************************************************
  1172. *** 1.01 DoCloseBehind(window) was removed ***
  1173.  
  1174.     1.01 - DoCloseBehind was a good idea for closing windows when quitting
  1175.     and not having to worry about updating the windows, but it suffered
  1176.     from a fatal flaw. If a desk accessory owned two windows, it would
  1177.     close both those windows when CloseDeskAcc was called. When DoCloseBehind
  1178.     got around to calling DoCloseWindow for that other window that was already
  1179.     closed, things would go very poorly. Another option would be to have a
  1180.     procedure, GetRearWindow, that would go through the window list and return
  1181.     the last window. Instead, we decided to present the standard approach
  1182.     of getting and closing FrontWindow until FrontWindow returns NIL. This
  1183.     has a potential benefit in that the window whose document needs to be saved
  1184.     may be visible since it is the front window, therefore decreasing the
  1185.     chance of user confusion. For aesthetic reasons, the windows in the
  1186.     application should be checked for updates periodically and have the
  1187.     updates serviced.
  1188. **************************************************************************************/
  1189.  
  1190.  
  1191. /* Clean up the application and exit. We close all of the windows so that
  1192.  they can update their documents, if any. */
  1193.  
  1194. /*    1.01 - If we find out that a cancel has occurred, we won't exit to the
  1195.     shell, but will return instead. */
  1196.  
  1197. #pragma segment Main
  1198. void Terminate()
  1199. {
  1200.     WindowPtr    aWindow;
  1201.     Boolean        closed;
  1202.     
  1203.     closed = true;
  1204.     do {
  1205.         aWindow = FrontWindow();                /* get the current front window */
  1206.         if (aWindow != nil)
  1207.             closed = DoCloseWindow(aWindow);    /* close this window */    
  1208.     }
  1209.     while (closed && (aWindow != nil));
  1210.     if (closed)
  1211.         {
  1212. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1213.         Next call belongs to TextPert reader sample.
  1214. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  1215.         GlobalFree();
  1216.  
  1217.  
  1218.         ExitToShell();                            /* exit if no cancellation */
  1219.         }
  1220. } /*Terminate*/
  1221.  
  1222.  
  1223. /*    Set up the whole world, including global variables, Toolbox managers,
  1224.     menus, and a single blank document. */
  1225.  
  1226. /*    1.01 - The code that used to be part of ForceEnvirons has been moved into
  1227.     this module. If an error is detected, instead of merely doing an ExitToShell,
  1228.     which leaves the user without much to go on, we call AlertUser, which puts
  1229.     up a simple alert that just says an error occurred and then calls ExitToShell.
  1230.     Since there is no other cleanup needed at this point if an error is detected,
  1231.     this form of error- handling is acceptable. If more sophisticated error recovery
  1232.     is needed, an exception mechanism, such as is provided by Signals, can be used. */
  1233.  
  1234. #pragma segment Initialize
  1235. void Initialize()
  1236. {
  1237.     Handle    menuBar;
  1238.     long    total, contig;
  1239.     EventRecord event;
  1240.     short    count;
  1241.  
  1242.     gInBackground = false;
  1243.  
  1244.     InitGraf((Ptr) &qd.thePort);
  1245.     InitFonts();
  1246.     InitWindows();
  1247.     InitMenus();
  1248.     TEInit();
  1249.     InitDialogs(nil);
  1250.     InitCursor();
  1251.  
  1252.     /*    Call MPPOpen and ATPLoad at this point to initialize AppleTalk,
  1253.          if you are using it. */
  1254.     /*    NOTE -- It is no longer necessary, and actually unhealthy, to check
  1255.         PortBUse and SPConfig before opening AppleTalk. The drivers are capable
  1256.         of checking for port availability themselves. */
  1257.     
  1258.     /*    This next bit of code is necessary to allow the default button of our
  1259.         alert be outlined.
  1260.         1.02 - Changed to call EventAvail so that we don't lose some important
  1261.         events. */
  1262.      
  1263.     for (count = 1; count <= 3; count++)
  1264.         EventAvail(everyEvent, &event);
  1265.     
  1266.     /*    Ignore the error returned from SysEnvirons; even if an error occurred,
  1267.         the SysEnvirons glue will fill in the SysEnvRec. You can save a redundant
  1268.         call to SysEnvirons by calling it after initializing AppleTalk. */
  1269.      
  1270.     SysEnvirons(kSysEnvironsVersion, &gMac);
  1271.     
  1272.     /* Make sure that the machine has at least 128K ROMs. If it doesn't, exit. */
  1273.     
  1274.     if (gMac.machineType < 0) BigBadError(eWrongMachine);
  1275.     
  1276.     /*    1.02 - Move TrapAvailable call to after SysEnvirons so that we can tell
  1277.         in TrapAvailable if a tool trap value is out of range. */
  1278.         
  1279.     gHasWaitNextEvent = TrapAvailable(_WaitNextEvent, ToolTrap);
  1280.  
  1281.     /*    1.01 - We used to make a check for memory at this point by examining ApplLimit,
  1282.         ApplicZone, and StackSpace and comparing that to the minimum size we told
  1283.         MultiFinder we needed. This did not work well because it assumed too much about
  1284.         the relationship between what we asked MultiFinder for and what we would actually
  1285.         get back, as well as how to measure it. Instead, we will use an alternate
  1286.         method comprised of two steps. */
  1287.      
  1288.     /*    It is better to first check the size of the application heap against a value
  1289.         that you have determined is the smallest heap the application can reasonably
  1290.         work in. This number should be derived by examining the size of the heap that
  1291.         is actually provided by MultiFinder when the minimum size requested is used.
  1292.         The derivation of the minimum size requested from MultiFinder is described
  1293.         in Sample.h. The check should be made because the preferred size can end up
  1294.         being set smaller than the minimum size by the user. This extra check acts to
  1295.         insure that your application is starting from a solid memory foundation. */
  1296.      
  1297.     if ((long) GetApplLimit() - (long) ApplicZone() < kMinHeap) BigBadError(eSmallSize);
  1298.     
  1299.     /*    Next, make sure that enough memory is free for your application to run. It
  1300.         is possible for a situation to arise where the heap may have been of required
  1301.         size, but a large scrap was loaded which left too little memory. To check for
  1302.         this, call PurgeSpace and compare the result with a value that you have determined
  1303.         is the minimum amount of free memory your application needs at initialization.
  1304.         This number can be derived several different ways. One way that is fairly
  1305.         straightforward is to run the application in the minimum size configuration
  1306.         as described previously. Call PurgeSpace at initialization and examine the value
  1307.         returned. However, you should make sure that this result is not being modified
  1308.         by the scrap's presence. You can do that by calling ZeroScrap before calling
  1309.         PurgeSpace. Make sure to remove that call before shipping, though. */
  1310.     
  1311.     /* ZeroScrap(); */
  1312.  
  1313.     PurgeSpace(&total, &contig);
  1314.     if (total < kMinSpace)
  1315.         if (UnloadScrap() != noErr)
  1316.             BigBadError(eNoMemory);
  1317.         else {
  1318.             PurgeSpace(&total, &contig);
  1319.             if (total < kMinSpace)
  1320.                 BigBadError(eNoMemory);
  1321.         }
  1322.  
  1323.     /*    The extra benefit to waiting until after the Toolbox Managers have been initialized
  1324.         to check memory is that we can now give the user an alert to tell him/her what
  1325.         happened. Although it is possible that the memory situation could be worsened by
  1326.         displaying an alert, MultiFinder would gracefully exit the application with
  1327.         an informative alert if memory became critical. Here we are acting more
  1328.         in a preventative manner to avoid future disaster from low-memory problems. */
  1329.  
  1330.     menuBar = GetNewMBar(rMenuBar);            /* read menus into menu bar */
  1331.     if ( menuBar == nil )
  1332.                 BigBadError(eNoMemory);
  1333.     SetMenuBar(menuBar);                    /* install menus */
  1334.     DisposHandle(menuBar);
  1335.     AddResMenu(GetMHandle(mApple), 'DRVR');    /* add DA names to Apple menu */
  1336.  
  1337. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1338.         Next call belongs to TextPert reader sample.
  1339. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  1340.     Init_TP_Menus();
  1341.     
  1342.     
  1343.     DrawMenuBar();
  1344.  
  1345.     gNumDocuments = 0;
  1346.  
  1347.     /* do other initialization here */
  1348.  
  1349. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1350.         Next call has been removed for TextPert reader sample.
  1351. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  1352. /*    DoNew();        */    /* create a single empty document */
  1353.  
  1354. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1355.         Next call belongs to TextPert reader sample.
  1356. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  1357.     if (GlobalInit())
  1358.         BigBadError(eNoMemory);
  1359.  
  1360.  
  1361. } /*Initialize*/
  1362.  
  1363.  
  1364. /* Used whenever a, like, fully fatal error happens */
  1365. #pragma segment Initialize
  1366. void BigBadError(error)
  1367.     short error;
  1368. {
  1369.     AlertUser(error);
  1370.     ExitToShell();
  1371. }
  1372.  
  1373.  
  1374. /* Return a rectangle that is inset from the portRect by the size of
  1375.     the scrollbars and a little extra margin. */
  1376.  
  1377. #pragma segment Main
  1378. void GetTERect(window,teRect)
  1379.     WindowPtr    window;
  1380.     Rect        *teRect;
  1381. {
  1382.     *teRect = window->portRect;
  1383.     InsetRect(teRect, kTextMargin, kTextMargin);    /* adjust for margin */
  1384.     teRect->bottom = teRect->bottom - 15;        /* and for the scrollbars */
  1385.     teRect->right = teRect->right - 15;
  1386. } /*GetTERect*/
  1387.  
  1388.  
  1389. /* Update the TERec's view rect so that it is the greatest multiple of
  1390.     the lineHeight that still fits in the old viewRect. */
  1391.  
  1392. #pragma segment Main
  1393. void AdjustViewRect(docTE)
  1394.     TEHandle    docTE;
  1395. {
  1396.     TEPtr        te;
  1397.     
  1398.     te = *docTE;
  1399.     te->viewRect.bottom = (((te->viewRect.bottom - te->viewRect.top) / te->lineHeight)
  1400.                             * te->lineHeight) + te->viewRect.top;
  1401. } /*AdjustViewRect*/
  1402.  
  1403.  
  1404. /* Scroll the TERec around to match up to the potentially updated scrollbar
  1405.     values. This is really useful when the window has been resized such that the
  1406.     scrollbars became inactive but the TERec was already scrolled. */
  1407.  
  1408. #pragma segment Main
  1409. void AdjustTE(window)
  1410.     WindowPtr    window;
  1411. {
  1412.     TEPtr        te;
  1413.     
  1414.     te = *((DocumentPeek)window)->docTE;
  1415.     TEScroll((te->viewRect.left - te->destRect.left) -
  1416.             GetCtlValue(((DocumentPeek)window)->docHScroll),
  1417.             (te->viewRect.top - te->destRect.top) -
  1418.                 (GetCtlValue(((DocumentPeek)window)->docVScroll) *
  1419.                 te->lineHeight),
  1420.             ((DocumentPeek)window)->docTE);
  1421. } /*AdjustTE*/
  1422.  
  1423.  
  1424. /* Calculate the new control maximum value and current value, whether it is the horizontal or
  1425.     vertical scrollbar. The vertical max is calculated by comparing the number of lines to the
  1426.     vertical size of the viewRect. The horizontal max is calculated by comparing the maximum document
  1427.     width to the width of the viewRect. The current values are set by comparing the offset between
  1428.     the view and destination rects. If necessary and we canRedraw, have the control be re-drawn by
  1429.     calling ShowControl. */
  1430.  
  1431. #pragma segment Main
  1432. void AdjustHV(isVert,control,docTE,canRedraw)
  1433.     Boolean        isVert;
  1434.     ControlHandle control;
  1435.     TEHandle    docTE;
  1436.     Boolean        canRedraw;
  1437. {
  1438.     short        value, lines, max;
  1439.     short        oldValue, oldMax;
  1440.     TEPtr        te;
  1441.     
  1442.     oldValue = GetCtlValue(control);
  1443.     oldMax = GetCtlMax(control);
  1444.     te = *docTE;                            /* point to TERec for convenience */
  1445.     if ( isVert ) {
  1446.         lines = te->nLines;
  1447.         /* since nLines isn’t right if the last character is a return, check for that case */
  1448.         if ( *(*te->hText + te->teLength - 1) == kCrChar )
  1449.             lines += 1;
  1450.         max = lines - ((te->viewRect.bottom - te->viewRect.top) /
  1451.                 te->lineHeight);
  1452.     } else
  1453.         max = kMaxDocWidth - (te->viewRect.right - te->viewRect.left);
  1454.     
  1455.     if ( max < 0 ) max = 0;
  1456.     SetCtlMax(control, max);
  1457.     
  1458.     /* Must deref. after SetCtlMax since, technically, it could draw and therefore move
  1459.         memory. This is why we don’t just do it once at the beginning. */
  1460.     te = *docTE;
  1461.     if ( isVert )
  1462.         value = (te->viewRect.top - te->destRect.top) / te->lineHeight;
  1463.     else
  1464.         value = te->viewRect.left - te->destRect.left;
  1465.     
  1466.     if ( value < 0 ) value = 0;
  1467.     else if ( value >  max ) value = max;
  1468.     
  1469.     SetCtlValue(control, value);
  1470.     /* now redraw the control if it needs to be and can be */
  1471.     if ( canRedraw || (max != oldMax) || (value != oldValue) )
  1472.         ShowControl(control);
  1473. } /*AdjustHV*/
  1474.  
  1475.  
  1476. /* Simply call the common adjust routine for the vertical and horizontal scrollbars. */
  1477.  
  1478. #pragma segment Main
  1479. void AdjustScrollValues(window,canRedraw)
  1480.     WindowPtr    window;
  1481.     Boolean        canRedraw;
  1482. {
  1483.     DocumentPeek doc;
  1484.     
  1485.     doc = (DocumentPeek)window;
  1486.     AdjustHV(true, doc->docVScroll, doc->docTE, canRedraw);
  1487.     AdjustHV(false, doc->docHScroll, doc->docTE, canRedraw);
  1488. } /*AdjustScrollValues*/
  1489.  
  1490.  
  1491. /*    Re-calculate the position and size of the viewRect and the scrollbars.
  1492.     kScrollTweek compensates for off-by-one requirements of the scrollbars
  1493.     to have borders coincide with the growbox. */
  1494.  
  1495. #pragma segment Main
  1496. void AdjustScrollSizes(window)
  1497.     WindowPtr    window;
  1498. {
  1499.     Rect        teRect;
  1500.     DocumentPeek doc;
  1501.     
  1502.     doc = (DocumentPeek) window;
  1503.     GetTERect(window, &teRect);                            /* start with TERect */
  1504.     (*doc->docTE)->viewRect = teRect;
  1505.     AdjustViewRect(doc->docTE);                            /* snap to nearest line */
  1506.     MoveControl(doc->docVScroll, window->portRect.right - kScrollbarAdjust, -1);
  1507.     SizeControl(doc->docVScroll, kScrollbarWidth, (window->portRect.bottom - 
  1508.                 window->portRect.top) - (kScrollbarAdjust - kScrollTweek));
  1509.     MoveControl(doc->docHScroll, -1, window->portRect.bottom - kScrollbarAdjust);
  1510.     SizeControl(doc->docHScroll, (window->portRect.right - 
  1511.                 window->portRect.left) - (kScrollbarAdjust - kScrollTweek),
  1512.                 kScrollbarWidth);
  1513. } /*AdjustScrollSizes*/
  1514.  
  1515.  
  1516. /* Turn off the controls by jamming a zero into their contrlVis fields (HideControl erases them
  1517.     and we don't want that). If the controls are to be resized as well, call the procedure to do that,
  1518.     then call the procedure to adjust the maximum and current values. Finally re-enable the controls
  1519.     by jamming a $FF in their contrlVis fields. */
  1520.  
  1521. #pragma segment Main
  1522. void AdjustScrollbars(window,needsResize)
  1523.     WindowPtr    window;
  1524.     Boolean        needsResize;
  1525. {
  1526.     DocumentPeek doc;
  1527.     
  1528.     doc = (DocumentPeek) window;
  1529.     /* First, turn visibility of scrollbars off so we won’t get unwanted redrawing */
  1530.     (*doc->docVScroll)->contrlVis = kControlInvisible;    /* turn them off */
  1531.     (*doc->docHScroll)->contrlVis = kControlInvisible;
  1532.     if ( needsResize )                                    /* move & size as needed */
  1533.         AdjustScrollSizes(window);
  1534.     AdjustScrollValues(window, needsResize);            /* fool with max and current value */
  1535.     /* Now, restore visibility in case we never had to ShowControl during adjustment */
  1536.     (*doc->docVScroll)->contrlVis = kControlVisible;    /* turn them on */
  1537.     (*doc->docHScroll)->contrlVis = kControlVisible;
  1538. } /* AdjustScrollbars */
  1539.  
  1540.  
  1541. /* Gets called from our assembly language routine, AsmClikLoop, which is in
  1542.     turn called by the TEClick toolbox routine. Saves the windows clip region,
  1543.     sets it to the portRect, adjusts the scrollbar values to match the TE scroll
  1544.     amount, then restores the clip region. */
  1545.  
  1546. #pragma segment Main
  1547. pascal  void PascalClikLoop()
  1548. {
  1549.     WindowPtr    window;
  1550.     RgnHandle    region;
  1551.     
  1552.     window = FrontWindow();
  1553.     region = NewRgn();
  1554.     GetClip(region);                    /* save clip */
  1555.     ClipRect(&window->portRect);
  1556.     AdjustScrollValues(window, true);    /* pass true for canRedraw */
  1557.     SetClip(region);                    /* restore clip */
  1558.     DisposeRgn(region);
  1559. } /* Pascal/C ClikLoop */
  1560.  
  1561.  
  1562. /* Gets called from our assembly language routine, AsmClikLoop, which is in
  1563.     turn called by the TEClick toolbox routine. It returns the address of the
  1564.     default clikLoop routine that was put into the TERec by TEAutoView to
  1565.     AsmClikLoop so that it can call it. */
  1566.  
  1567. #pragma segment Main
  1568. pascal ProcPtr GetOldClikLoop()
  1569. {
  1570.     return ((DocumentPeek)FrontWindow())->docClik;
  1571. } /* GetOldClikLoop */
  1572.  
  1573.  
  1574. /*    Check to see if a window belongs to the application. If the window pointer
  1575.     passed was NIL, then it could not be an application window. WindowKinds
  1576.     that are negative belong to the system and windowKinds less than userKind
  1577.     are reserved by Apple except for windowKinds equal to dialogKind, which
  1578.     mean it is a dialog.
  1579.     1.02 - In order to reduce the chance of accidentally treating some window
  1580.     as an AppWindow that shouldn't be, we'll only return true if the windowkind
  1581.     is userKind. If you add different kinds of windows to Sample you'll need
  1582.     to change how this all works. */
  1583.  
  1584. #pragma segment Main
  1585. Boolean IsAppWindow(window)
  1586.     WindowPtr    window;
  1587. {
  1588.     short        windowKind;
  1589.  
  1590.     if ( window == nil )
  1591.         return false;
  1592.     else {    /* application windows have windowKinds = userKind (8) */
  1593.         windowKind = ((WindowPeek) window)->windowKind;
  1594.         return (windowKind == userKind);
  1595.     }
  1596. } /*IsAppWindow*/
  1597.  
  1598.  
  1599. /* Check to see if a window belongs to a desk accessory. */
  1600.  
  1601. #pragma segment Main
  1602. Boolean IsDAWindow(window)
  1603.     WindowPtr    window;
  1604. {
  1605.     if ( window == nil )
  1606.         return false;
  1607.     else    /* DA windows have negative windowKinds */
  1608.         return ((WindowPeek) window)->windowKind < 0;
  1609. } /*IsDAWindow*/
  1610.  
  1611.  
  1612. /*    Check to see if a given trap is implemented. This is only used by the
  1613.     Initialize routine in this program, so we put it in the Initialize segment.
  1614.     The recommended approach to see if a trap is implemented is to see if
  1615.     the address of the trap routine is the same as the address of the
  1616.     Unimplemented trap. */
  1617. /*    1.02 - Needs to be called after call to SysEnvirons so that it can check
  1618.     if a ToolTrap is out of range of a pre-MacII ROM. */
  1619.  
  1620. #pragma segment Initialize
  1621. Boolean TrapAvailable(tNumber,tType)
  1622.     short        tNumber;
  1623.     TrapType    tType;
  1624. {
  1625.     if ( ( tType == (unsigned char) ToolTrap ) &&
  1626.         ( gMac.machineType > envMachUnknown ) &&
  1627.         ( gMac.machineType < envMacII ) ) {        /* it's a 512KE, Plus, or SE */
  1628.         tNumber = tNumber & 0x03FF;
  1629.         if ( tNumber > 0x01FF )                    /* which means the tool traps */
  1630.             tNumber = _Unimplemented;            /* only go to 0x01FF */
  1631.     }
  1632.     return NGetTrapAddress(tNumber, tType) != GetTrapAddress(_Unimplemented);
  1633. } /*TrapAvailable*/
  1634.  
  1635.  
  1636. /*    Display an alert that tells the user an error occurred, then exit the program.
  1637.     This routine is used as an ultimate bail-out for serious errors that prohibit
  1638.     the continuation of the application. Errors that do not require the termination
  1639.     of the application should be handled in a different manner. Error checking and
  1640.     reporting has a place even in the simplest application. The error number is used
  1641.     to index an 'STR#' resource so that a relevant message can be displayed. */
  1642.  
  1643. #pragma segment Main
  1644. void AlertUser(error)
  1645.     short        error;
  1646. {
  1647.     short        itemHit;
  1648.     Str255        message;
  1649.  
  1650.     SetCursor(&qd.arrow);
  1651.     /* type Str255 is an array in MPW 3 */
  1652.     GetIndString(message, kErrStrings, error);
  1653.     ParamText(message, "", "", "");
  1654.     itemHit = Alert(rUserAlert, nil);
  1655. } /* AlertUser */
  1656.  
  1657.  
  1658.